home *** CD-ROM | disk | FTP | other *** search
/ Collection of Tools & Utilities / Collection of Tools and Utilities.iso / borland / jnfb88.zip / USETC.ZIP / MAKEFILE < prev    next >
Text File  |  1987-05-17  |  311b  |  18 lines

  1. # makefile: program builder for CONCAT
  2.  
  3. # rules 
  4. .c.obj:
  5.     tcc -c -m$(MDL) $<
  6.  
  7. # symbolic constants
  8. MDL = s
  9. LIB = c:\tc\lib
  10. SRCS = concat.c filecopy.c
  11. OBJS = concat.obj filecopy.obj
  12.  
  13. # instructions
  14. concat.exe:    $(OBJS)
  15.     tlink $(LIB)\c0$(MDL) $(OBJS), $*, , $(LIB)\c$(MDL)
  16.  
  17. $(OBJS):    $(SRCS)
  18.